home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / math / symbol63.zip / LIMIT.IN < prev    next >
Text File  |  1996-02-19  |  705b  |  23 lines

  1. ; Read this text file into Mathomatic to learn how to do limits.
  2. ; The formula for the derivative of a function of "x" is:
  3.  
  4. ;       f(x+h) - f(x)
  5. ; limit -------------  As "h" goes to 0.
  6. ;             h
  7.  
  8. ; Here we will compute the derivative of "x^.5" using limits:
  9. a=((x+h)^.5-x^.5)/h
  10. group
  11. ; We want "h" to go to 0 to give us the derivative.
  12. ; Just entering 0 for "h" will give a divide by zero error.
  13. pause
  14. ; So we will first have to solve for "h":
  15. h
  16. ; Now you will have to replace "h" with 0.
  17. ; When prompted for "h", enter 0, otherwise enter return:
  18. replace
  19. ; Last step.  Solve the equation back for "a":
  20. a
  21. ; The result should be "a=0.5/(x^0.5)".
  22. ; That concludes this lesson.
  23.